:root {
  --bg: #070711;
  --text: #f9f8ff;
  --muted: #aaa6bd;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #15a9ff;
  --violet: #8747ff;
  --pink: #f50a8d;
  --orange: #ff6b21;
  --yellow: #ffd800;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  position: relative;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  position: relative;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip !important;
  }
}

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

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

::selection {
  background: var(--pink);
  color: #fff;
}

.artwork,
.artwork-shade,
.mesh,
.aurora {
  position: absolute;
  pointer-events: none;
}

.background {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  height: 100dvh;
  z-index: -2;
  overflow: hidden !important;
  contain: paint;
  isolation: isolate;
  pointer-events: none;
  background: var(--bg);
}

.artwork {
  inset: -2%;
  z-index: -3;
  background: url("assets/newx-ribbons-bg.jpg") center / cover no-repeat;
  filter: saturate(1.16) contrast(1.06);
  opacity: 0.76;
  transform: scale(1.035);
  animation: artwork-breathe 18s ease-in-out infinite alternate;
}

.artwork-shade {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 17, 0.95) 0%, rgba(7, 7, 17, 0.83) 25%, rgba(7, 7, 17, 0.35) 58%, rgba(7, 7, 17, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 7, 17, 0.24), rgba(7, 7, 17, 0.48) 74%, rgba(7, 7, 17, 0.9));
}

.mesh {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.15) 0.6px, transparent 0.6px);
  background-size: 52px 52px, 52px 52px, 12px 12px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.aurora {
  width: min(55vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.1;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}

.aurora-blue {
  top: -38%;
  left: -16%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.aurora-pink {
  top: 4%;
  right: -22%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  animation-delay: -5s;
}

.aurora-gold {
  right: 20%;
  bottom: -62%;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--yellow));
  opacity: 0.06;
  animation-delay: -9s;
}

.page {
  display: grid;
  width: min(calc(100% - 48px), 1480px);
  min-height: 100svh;
  margin-inline: auto;
  grid-template-rows: 76px 1fr 38px;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform 300ms var(--ease-out), background 300ms ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) rotate(-2deg);
}

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

.header-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(21, 169, 255, 0.9);
  animation: pulse 2.8s ease-in-out infinite;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform 260ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.header-contact:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

main {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(260px, 1fr) minmax(230px, 0.74fr) auto;
  gap: 16px;
  padding: 16px 0;
}

.hero {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(28px, 3vw, 56px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 clamp(14px, 2vh, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

h1 strong {
  display: block;
  margin-top: 0.07em;
  background: linear-gradient(92deg, var(--blue), var(--violet) 34%, var(--pink) 62%, var(--orange) 82%, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.lead {
  max-width: 600px;
  margin: clamp(16px, 2.5vh, 28px) 0 0;
  color: #bbb7c9;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

.logo-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  width: min(100%, 470px);
  aspect-ratio: 1;
  justify-self: end;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.13), transparent 28%),
    radial-gradient(circle, rgba(8, 8, 20, 0.5) 0%, rgba(8, 8, 20, 0.16) 56%, transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 70px rgba(135, 71, 255, 0.13),
    0 32px 90px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(8px) saturate(135%);
  backdrop-filter: blur(8px) saturate(135%);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 180ms ease-out, border-color 300ms ease, box-shadow 300ms ease;
}

.logo-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 95px rgba(245, 10, 141, 0.16),
    0 38px 100px rgba(0, 0, 0, 0.38);
}

.logo-card::before {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--blue), var(--violet), var(--pink), var(--orange), var(--yellow), var(--blue));
  filter: blur(55px);
  opacity: 0.25;
  content: "";
  animation: halo 5s ease-in-out infinite;
}

.logo-card img {
  position: relative;
  z-index: 3;
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 26px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 28px rgba(135, 71, 255, 0.14));
  animation: logo-float 5.5s ease-in-out infinite;
}

.logo-card small {
  position: absolute;
  right: 11%;
  bottom: 10%;
  z-index: 4;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reflection,
.orbit {
  position: absolute;
  pointer-events: none;
}

.reflection {
  z-index: 2;
  width: 100%;
  height: 18%;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.2;
  transform: rotate(-24deg);
}

.reflection-one {
  top: 15%;
  left: -60%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--violet), transparent);
  animation: reflection-pass 7s ease-in-out infinite;
}

.reflection-two {
  right: -62%;
  bottom: 9%;
  background: linear-gradient(90deg, transparent, var(--pink), var(--yellow), transparent);
  animation: reflection-pass 8s -3s ease-in-out infinite reverse;
}

.orbit {
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(38deg);
}

.orbit-two {
  transform: rotate(-31deg);
}

.choices {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.choice {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(20px, 1.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: clamp(24px, 2vw, 34px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  transform-origin: center bottom;
  transition:
    transform 450ms var(--ease-out),
    border-color 280ms ease,
    box-shadow 360ms ease;
}

.choice::after {
  position: absolute;
  top: -55%;
  left: -75%;
  z-index: 4;
  width: 38%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
  transition: left 780ms var(--ease-out);
}

.choice:hover {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 30px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px) scale(1.008) rotateX(1deg);
}

.choice:hover::after {
  left: 138%;
}

.choice-studio {
  background: linear-gradient(145deg, rgba(21, 169, 255, 0.17), rgba(135, 71, 255, 0.08) 58%, rgba(255, 255, 255, 0.04));
}

.choice-team {
  background: linear-gradient(145deg, rgba(245, 10, 141, 0.17), rgba(255, 107, 33, 0.08) 58%, rgba(255, 255, 255, 0.04));
}

.choice-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.5;
  transition: opacity 350ms ease, transform 600ms var(--ease-out);
}

.choice-studio .choice-glow {
  background:
    radial-gradient(circle at 8% 0%, rgba(21, 169, 255, 0.42), transparent 34%),
    radial-gradient(circle at 98% 105%, rgba(135, 71, 255, 0.32), transparent 46%);
}

.choice-team .choice-glow {
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 10, 141, 0.4), transparent 34%),
    radial-gradient(circle at 98% 105%, rgba(255, 216, 0, 0.27), transparent 46%);
}

.choice:hover .choice-glow {
  opacity: 0.85;
  transform: scale(1.08);
}

.choice-top,
.choice-content,
.choice-action {
  position: relative;
  z-index: 2;
}

.choice-top,
.choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-top span:last-child {
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
  text-transform: none;
}

.choice-content {
  display: flex;
  margin-top: auto;
  padding-top: 12px;
  flex-direction: column;
  align-items: flex-start;
}

.choice-title-row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
}

.choice-content strong {
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.94;
  transition: transform 380ms var(--ease-out);
}

.choice:hover .choice-content strong {
  transform: translateX(5px);
}

.choice-slogan {
  max-width: 390px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.4;
}

.choice-symbol {
  position: relative;
  display: flex;
  width: clamp(42px, 3.4vw, 52px);
  height: clamp(42px, 3.4vw, 52px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 26px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform 380ms var(--ease-out), border-color 260ms ease, background 260ms ease;
}

.choice-symbol::after {
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 210deg, transparent, rgba(255, 255, 255, 0.2), transparent 32%);
  content: "";
  opacity: 0;
  transform: rotate(-35deg);
  transition: opacity 260ms ease, transform 700ms var(--ease-out);
}

.choice-symbol-studio {
  color: #71d3ff;
  background: linear-gradient(145deg, rgba(21, 169, 255, 0.22), rgba(135, 71, 255, 0.1));
}

.choice-symbol-studio i {
  position: relative;
  z-index: 1;
  width: 3px;
  height: 19px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(80, 195, 255, 0.52);
  transform: scaleY(0.48);
}

.choice-symbol-studio i:nth-child(2),
.choice-symbol-studio i:nth-child(4) {
  transform: scaleY(0.78);
}

.choice-symbol-studio i:nth-child(3) {
  transform: scaleY(1);
}

.choice-symbol-team {
  gap: 5px;
  color: #ff82c6;
  background: linear-gradient(145deg, rgba(245, 10, 141, 0.22), rgba(255, 107, 33, 0.1));
}

.choice-symbol-team i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 13px;
  margin-top: 8px;
  border-radius: 6px 6px 3px 3px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(255, 62, 164, 0.38);
}

.choice-symbol-team i::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.choice-symbol-team i:nth-child(2) {
  height: 16px;
  color: #ffc26f;
  transform: translateY(-3px);
}

.choice:hover .choice-symbol,
.choice:focus-visible .choice-symbol {
  border-color: rgba(255, 255, 255, 0.48);
  background-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px) rotate(-3deg) scale(1.04);
}

.choice:hover .choice-symbol::after,
.choice:focus-visible .choice-symbol::after {
  opacity: 1;
  transform: rotate(55deg);
}

.choice:hover .choice-symbol-studio i,
.choice:focus-visible .choice-symbol-studio i {
  animation: studio-levels 760ms ease-in-out infinite alternate;
}

.choice:hover .choice-symbol-studio i:nth-child(2),
.choice:focus-visible .choice-symbol-studio i:nth-child(2) {
  animation-delay: -360ms;
}

.choice:hover .choice-symbol-studio i:nth-child(3),
.choice:focus-visible .choice-symbol-studio i:nth-child(3) {
  animation-delay: -180ms;
}

.choice:hover .choice-symbol-studio i:nth-child(4),
.choice:focus-visible .choice-symbol-studio i:nth-child(4) {
  animation-delay: -520ms;
}

.choice:hover .choice-symbol-studio i:nth-child(5),
.choice:focus-visible .choice-symbol-studio i:nth-child(5) {
  animation-delay: -90ms;
}

.choice:hover .choice-symbol-team i,
.choice:focus-visible .choice-symbol-team i {
  animation: team-bounce 680ms ease-in-out infinite alternate;
}

.choice:hover .choice-symbol-team i:nth-child(2),
.choice:focus-visible .choice-symbol-team i:nth-child(2) {
  animation-delay: -260ms;
}

.choice:hover .choice-symbol-team i:nth-child(3),
.choice:focus-visible .choice-symbol-team i:nth-child(3) {
  animation-delay: -430ms;
}

.choice-action {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.choice-action i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-style: normal;
  transition: color 240ms ease, background 240ms ease, transform 300ms var(--ease-out);
}

.choice:hover .choice-action i {
  background: #fff;
  color: #090913;
  transform: rotate(45deg);
}

.contact-bar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.contact-title,
.contact-links,
.contact-links a {
  display: flex;
  align-items: center;
}

.contact-title {
  gap: 16px;
}

.contact-title > span,
.contact-links small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-title strong {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 540;
  letter-spacing: -0.03em;
}

.contact-links {
  gap: clamp(26px, 4vw, 68px);
}

.contact-links a {
  gap: 10px;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 650;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-links a:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.animate-in {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.985);
}

body.is-loaded .animate-in {
  animation: enter 760ms var(--ease-out) both;
}

body.is-loaded .delay-1 {
  animation-delay: 60ms;
}

body.is-loaded .delay-2 {
  animation-delay: 140ms;
}

body.is-loaded .delay-3 {
  animation-delay: 230ms;
}

body.is-loaded .delay-4 {
  animation-delay: 330ms;
}

body.is-loaded .delay-5 {
  animation-delay: 430ms;
}

body.is-loaded .delay-6 {
  animation-delay: 520ms;
}

@keyframes enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes studio-levels {
  from {
    transform: scaleY(0.34);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes team-bounce {
  from {
    transform: translateY(1px);
  }
  to {
    transform: translateY(-3px);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-3%, -3%, 0) scale(0.94);
  }
  to {
    transform: translate3d(7%, 8%, 0) scale(1.08);
  }
}

@keyframes artwork-breathe {
  from {
    filter: saturate(1.08) contrast(1.04) brightness(0.88);
    transform: scale(1.035) translate3d(-0.4%, -0.3%, 0);
  }
  to {
    filter: saturate(1.22) contrast(1.08) brightness(1.02);
    transform: scale(1.075) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes halo {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.86) rotate(0deg);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05) rotate(24deg);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.7deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.7deg);
  }
}

@keyframes reflection-pass {
  0%,
  25% {
    transform: translateX(-10%) rotate(-24deg);
  }
  70%,
  100% {
    transform: translateX(115%) rotate(-24deg);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .page {
    grid-template-rows: 64px 1fr 32px;
  }

  main {
    grid-template-rows: minmax(220px, 1fr) minmax(200px, 0.72fr) auto;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .logo-card {
    width: min(100%, 345px);
  }

  h1 {
    font-size: clamp(46px, 5vw, 68px);
  }

  .choice {
    padding: 18px 22px;
  }

  .choice-content strong {
    font-size: clamp(38px, 3.8vw, 54px);
  }

  .contact-bar {
    min-height: 56px;
    padding-block: 8px;
  }
}

@media (max-width: 900px) {
  .page,
  main,
  .hero {
    max-width: 100%;
  }

  .page {
    display: block;
    width: min(calc(100% - 32px), 720px);
    overflow-x: hidden;
    position: relative;
  }

  .header {
    display: flex;
    height: 72px;
    justify-content: space-between;
  }

  .header-note {
    display: none;
  }

  main {
    display: block;
    padding: 28px 0 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .logo-card {
    width: min(86vw, 430px);
    margin-inline: auto;
    justify-self: center;
    order: -1;
    overflow: hidden;
    contain: paint;
  }

  .hero-copy {
    text-align: center;
  }

  .artwork {
    background-position: 63% center;
    opacity: 0.68;
  }

  .artwork-shade {
    background:
      linear-gradient(180deg, rgba(7, 7, 17, 0.42), rgba(7, 7, 17, 0.68) 52%, rgba(7, 7, 17, 0.94)),
      linear-gradient(90deg, rgba(7, 7, 17, 0.45), rgba(7, 7, 17, 0.28));
  }

  h1,
  .lead {
    margin-inline: auto;
  }

  .choices {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .choice {
    min-height: 250px;
  }

  .contact-bar {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-links {
    width: 100%;
    justify-content: space-between;
  }

  .footer {
    height: 44px;
  }
}

@media (max-width: 540px) {
  .page {
    width: min(calc(100% - 24px), 480px);
  }

  .header-contact {
    padding: 9px 12px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .lead {
    font-size: 14px;
  }

  .choice {
    min-height: 235px;
    padding: 20px;
  }

  .choice-top span:last-child {
    display: none;
  }

  .choice-content strong {
    font-size: clamp(44px, 16vw, 62px);
  }

  .contact-title {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .contact-links a {
    width: 100%;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
}

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