@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Orbitron:wght@400;500;600;700&display=swap");

:root {
  --black: #010203;
  --charcoal: #080a0d;
  --grey: #858d95;
  --silver: #dce2e7;
  --white: #fafafa;
  --line: rgba(190, 202, 212, .24);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  font-family: Arial, sans-serif;
  perspective: 1800px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at center, transparent 10%, rgba(0,0,0,.35) 65%, #000 115%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(220,225,230,.045) 4px),
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 21;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 170px #000;
}

button {
  font: inherit;
}

.hacker-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(160,170,180,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,170,180,.14) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #050607;
  background-size: 88px 88px, 88px 88px, 22px 22px, 22px 22px;
  animation: gridMove 9s linear infinite;
}

.hacker-background::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(210,220,230,.17) 42.1%, transparent 42.3%),
    linear-gradient(295deg, transparent 0 64%, rgba(210,220,230,.14) 64.1%, transparent 64.3%);
  animation: circuitMove 7s ease-in-out infinite alternate;
}

.hacker-background::after {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #e5e9ed;
  box-shadow: 0 0 14px #fff, 0 0 45px #aab3bb;
  animation: scanBeam 6s linear infinite;
}

.code-stream {
  position: absolute;
  color: rgba(210,218,225,.4);
  white-space: nowrap;
  font: 11px Orbitron, monospace;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(220,225,230,.85);
  animation: codeFloat 13s linear infinite;
}

.stream-one { top: 17%; left: -5%; }
.stream-two { top: 32%; right: -8%; animation-delay: -4s; }
.stream-three { top: 49%; left: 8%; animation-delay: -8s; }
.stream-four { top: 67%; right: 5%; animation-delay: -2s; }
.stream-five { top: 82%; left: -10%; animation-delay: -6s; }
.stream-six { top: 91%; right: -5%; animation-delay: -10s; }

@keyframes gridMove {
  to { background-position: 88px 88px, 88px 88px, 22px 22px, 22px 22px; }
}

@keyframes circuitMove {
  to { transform: translateX(35px) scale(1.03); opacity: .45; }
}

@keyframes scanBeam {
  to { transform: translateY(125vh); }
}

@keyframes codeFloat {
  0% { opacity: .08; transform: translateX(-20px); }
  50% { opacity: .55; transform: translateX(80px); }
  100% { opacity: .08; transform: translateX(180px); }
}

.hacker-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(190,198,205,.23) 120px 121px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(190,198,205,.21) 120px 121px);
  animation: lineShift 12s linear infinite;
}

.hacker-lines::before,
.hacker-lines::after {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #e1e4e7, transparent);
  box-shadow: 0 0 18px #c8ced4;
  animation: horizontalScan 8s linear infinite;
}

.hacker-lines::before { top: 25%; }
.hacker-lines::after { top: 75%; opacity: .4; animation-delay: -4s; }

@keyframes lineShift {
  to { background-position: -120px 120px; }
}

@keyframes horizontalScan {
  from { transform: translateY(-40vh); }
  to { transform: translateY(140vh); }
}

#velvetRain {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.rain-flower {
  position: absolute;
  top: -100px;
  width: var(--size);
  height: var(--size);
  opacity: var(--opacity);
  filter: blur(var(--blur));
  animation: fall var(--duration) linear var(--delay) infinite;
}

.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 68%;
  transform-origin: 0 100%;
  border-radius: 72% 28% 76% 24%;
  background: linear-gradient(125deg, #b9c0c6, #343a40 28%, #080a0c 68%, #000);
  box-shadow: inset 4px 4px 12px rgba(255,255,255,.2), inset -12px -15px 20px #000;
}

.petal:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.petal:nth-child(2) { transform: translate(-50%, -100%) rotate(60deg); }
.petal:nth-child(3) { transform: translate(-50%, -100%) rotate(120deg); }
.petal:nth-child(4) { transform: translate(-50%, -100%) rotate(180deg); }
.petal:nth-child(5) { transform: translate(-50%, -100%) rotate(240deg); }
.petal:nth-child(6) { transform: translate(-50%, -100%) rotate(300deg); }

@keyframes fall {
  to { transform: translate3d(var(--sway), 120vh, -20px) rotate(360deg); }
}

/* Intro screen */

#startScreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(2,3,4,.38);
  transition: opacity 1s ease, visibility 1s ease;
}

#startScreen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.start-card {
  width: min(90vw, 475px);
  padding: 55px 34px 47px;
  transform: translateY(12vh);
  border: 1px solid rgba(210,215,220,.4);
  background: linear-gradient(145deg, rgba(45,50,55,.86), rgba(3,4,5,.94));
  box-shadow: 0 25px 90px #000, 0 0 50px rgba(190,200,210,.18), inset 0 0 35px rgba(255,255,255,.045);
  text-align: center;
  animation: cardPulse 5s ease-in-out infinite;
}

@keyframes cardPulse {
  50% {
    box-shadow: 0 25px 90px #000, 0 0 80px rgba(210,220,230,.3), inset 0 0 35px rgba(255,255,255,.07);
  }
}

.crest {
  color: var(--silver);
  font-size: 34px;
  text-shadow: 0 0 20px #fff;
}

.eyebrow {
  margin: 13px 0 23px;
  color: #aeb5bb;
  font: 600 11px Orbitron, sans-serif;
  letter-spacing: 4px;
}

.start-card h1 {
  margin: 0;
  font: 900 clamp(38px, 11vw, 70px)/.9 Cinzel, Georgia, serif;
  letter-spacing: 5px;
  text-shadow: 0 0 10px #fff, 0 0 35px #89939b;
}

.start-card h1 span,
.accent {
  color: #b9c1c8;
}

.start-copy {
  margin: 28px 0 33px;
  color: #aeb4ba;
  letter-spacing: 1px;
}

#startBtn,
#skipBtn {
  cursor: pointer;
  border: 1px solid #aab2b9;
  color: #fff;
  background: linear-gradient(135deg, #555d64, #070809);
  font-family: Orbitron, sans-serif;
  transition: .25s ease;
}

#startBtn {
  min-width: 210px;
  padding: 16px 35px;
  letter-spacing: 6px;
  box-shadow: 0 0 24px rgba(255,255,255,.25);
}

#startBtn:hover,
#skipBtn:hover {
  border-color: #fff;
  box-shadow: 0 0 32px rgba(255,255,255,.6);
  transform: translateY(-3px);
}

#skipBtn {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 1100;
  display: none;
  padding: 9px 15px;
  color: #c4c9ce;
  background: rgba(0,0,0,.72);
  font-size: 11px;
  letter-spacing: 2px;
}

/* Cinematic sentences */

.label,
#mainTitle {
  position: fixed;
  left: 50%;
  pointer-events: none;
  text-align: center;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.label {
  top: 70vh;
  z-index: 100;
  width: min(96%, 1500px);
  font: 900 clamp(34px, 5.8vw, 88px)/1.08 Cinzel, Georgia, serif;
  letter-spacing: 2px;
  color: #e2e6e9;
  text-shadow: 0 0 6px #fff, 0 0 18px #fff, 0 0 40px #d1d7dc, 0 0 100px #929ba3;
}

.label.playing {
  animation-duration: 7000ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.char {
  display: inline-block;
  opacity: 0;
  transform-style: preserve-3d;
  animation-duration: 1900ms;
  animation-delay: calc(100ms + var(--char-index) * 38ms);
  animation-timing-function: cubic-bezier(.2,.75,.18,1);
  animation-fill-mode: forwards;
}

.space {
  width: .35em;
}

.label.playing .char { animation-name: assembleForward; }
.label-2.playing .char { animation-name: assembleLeft; }
.label-3.playing .char { animation-name: assembleTop; }
.label-4.playing .char { animation-name: assembleRight; }
.label-5.playing .char { animation-name: assembleDiagonal; }
.label-6.playing .char { animation-name: assembleBottom; }
.label-7.playing .char { animation-name: assembleDepth; }
.label-8.playing .char { animation-name: assembleScatter; }

.label-1.playing { animation-name: sentenceForward; }
.label-2.playing { animation-name: sentenceLeft; }
.label-3.playing { animation-name: sentenceTop; }
.label-4.playing { animation-name: sentenceRight; }
.label-5.playing { animation-name: sentenceDiagonal; }
.label-6.playing { animation-name: sentenceBottom; }
.label-7.playing { animation-name: sentenceDepth; }
.label-8.playing { animation-name: sentenceScatter; }

.label::before {
  position: absolute;
  inset: -45px -10%;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(ellipse, rgba(210,220,230,.45), transparent 68%);
  filter: blur(32px);
  transform: translateZ(-100px);
}

.label.playing::before {
  animation: sentenceAura 7000ms linear forwards;
}

.label::after {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: min(75%, 780px);
  height: 3px;
  content: "";
  transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, transparent, #fff, #aeb6bd, #fff, transparent);
  box-shadow: 0 0 16px #fff, 0 0 34px #9ca5ad;
}

.label.playing::after {
  animation: lineReveal 7000ms linear forwards;
}

@keyframes sentenceForward {
  0% { opacity: 0; transform: translate3d(-50%,-50%,-1500px) rotateX(22deg) scale(.035); filter: blur(25px) brightness(.5); }
  18% { opacity: 1; }
  55% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateX(0) scale(1); filter: blur(0) brightness(1.5); }
  100% { opacity: 0; transform: translate3d(-50%,-50%,2800px) rotateX(-5deg) scale(2.8); filter: blur(20px) brightness(1.8); }
}

@keyframes sentenceLeft {
  0% { opacity: 0; transform: translate3d(-180%,-50%,-1200px) rotateY(-42deg) scale(.08); filter: blur(20px); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateY(0) scale(1); filter: blur(0) brightness(1.5); }
  100% { opacity: 0; transform: translate3d(120%,-50%,2600px) rotateY(18deg) scale(2.7); filter: blur(20px); }
}

@keyframes sentenceTop {
  0% { opacity: 0; transform: translate3d(-50%,-180%,-1300px) rotateX(48deg) scale(.08); filter: blur(22px); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateX(0) scale(1); filter: blur(0) brightness(1.55); }
  100% { opacity: 0; transform: translate3d(-50%,120%,2700px) rotateX(-18deg) scale(2.8); filter: blur(20px); }
}

@keyframes sentenceRight {
  0% { opacity: 0; transform: translate3d(80%,-50%,-1300px) rotateY(45deg) scale(.07); filter: blur(22px); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateY(0) scale(1); filter: blur(0) brightness(1.55); }
  100% { opacity: 0; transform: translate3d(-220%,-50%,2700px) rotateY(-20deg) scale(2.8); filter: blur(20px); }
}

@keyframes sentenceDiagonal {
  0% { opacity: 0; transform: translate3d(-170%,-160%,-1300px) rotateZ(-24deg) scale(.06); filter: blur(23px); }
  18% { opacity: 1; }
  60% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateZ(0) scale(1); filter: blur(0) brightness(1.6); }
  100% { opacity: 0; transform: translate3d(130%,130%,2800px) rotateZ(10deg) scale(2.8); filter: blur(21px); }
}

@keyframes sentenceBottom {
  0% { opacity: 0; transform: translate3d(-50%,150%,-1400px) rotateX(-45deg) scale(.07); filter: blur(22px); }
  18% { opacity: 1; }
  60% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateX(0) scale(1); filter: blur(0) brightness(1.55); }
  100% { opacity: 0; transform: translate3d(-50%,-220%,2800px) rotateX(20deg) scale(2.8); filter: blur(21px); }
}

@keyframes sentenceDepth {
  0% { opacity: 0; transform: translate3d(-50%,-50%,-1800px) rotateY(35deg) scale(.025); filter: blur(28px); }
  18% { opacity: 1; }
  62% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateY(0) scale(1); filter: blur(0) brightness(1.6); }
  100% { opacity: 0; transform: translate3d(-50%,-50%,3100px) rotateY(-12deg) scale(3); filter: blur(23px); }
}

@keyframes sentenceScatter {
  0% { opacity: 0; transform: translate3d(-50%,-50%,-1300px) rotateZ(18deg) scale(.07); filter: blur(24px); }
  18% { opacity: 1; }
  62% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateZ(0) scale(1); filter: blur(0) brightness(1.65); }
  100% { opacity: 0; transform: translate3d(-50%,-50%,2900px) rotateZ(-8deg) scale(2.9); filter: blur(22px); }
}

@keyframes assembleForward {
  from { opacity: 0; transform: translateZ(-900px) rotateX(80deg) scale(.05); filter: blur(18px); }
  to { opacity: 1; transform: translateZ(0) rotateX(0) scale(1); filter: blur(0); }
}

@keyframes assembleLeft {
  from { opacity: 0; transform: translateX(-700px) rotateY(-90deg) scale(.2); filter: blur(15px); }
  to { opacity: 1; transform: translateX(0) rotateY(0) scale(1); filter: blur(0); }
}

@keyframes assembleTop {
  from { opacity: 0; transform: translateY(-600px) rotateX(90deg) scale(.2); filter: blur(15px); }
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}

@keyframes assembleRight {
  from { opacity: 0; transform: translateX(700px) rotateY(90deg) scale(.2); filter: blur(15px); }
  to { opacity: 1; transform: translateX(0) rotateY(0) scale(1); filter: blur(0); }
}

@keyframes assembleDiagonal {
  from { opacity: 0; transform: translate(-600px,-500px) rotateZ(-80deg) scale(.15); filter: blur(17px); }
  to { opacity: 1; transform: translate(0) rotateZ(0) scale(1); filter: blur(0); }
}

@keyframes assembleBottom {
  from { opacity: 0; transform: translateY(600px) rotateX(-90deg) scale(.2); filter: blur(15px); }
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}

@keyframes assembleDepth {
  from { opacity: 0; transform: translateZ(-1200px) rotateY(180deg) scale(.05); filter: blur(22px); }
  to { opacity: 1; transform: translateZ(0) rotateY(0) scale(1); filter: blur(0); }
}

@keyframes assembleScatter {
  from { opacity: 0; transform: translate(calc((var(--char-index) - 8) * 90px), calc((var(--char-index) - 4) * 70px)) rotateZ(90deg) scale(.1); filter: blur(18px); }
  to { opacity: 1; transform: translate(0) rotateZ(0) scale(1); filter: blur(0); }
}

@keyframes sentenceAura {
  0% { opacity: 0; transform: translateZ(-180px) scale(.3); }
  25% { opacity: 1; }
  75% { opacity: .8; transform: translateZ(-50px) scale(1.1); }
  100% { opacity: 0; transform: translateZ(30px) scale(1.6); }
}

@keyframes lineReveal {
  0% { opacity: 0; transform: translateX(-50%) scaleX(0); }
  20% { opacity: 1; transform: translateX(-50%) scaleX(1); }
  100% { opacity: 0; transform: translateX(-50%) scaleX(.25); }
}

/* Final title and flower curtain */

#mainTitle {
  top: 70vh;
  z-index: 120;
  width: 96%;
  font: 900 clamp(38px, 9vw, 125px) Cinzel, Georgia, serif;
  letter-spacing: clamp(3px, 1vw, 15px);
  color: #eef1f3;
  text-shadow: 0 0 7px #fff, 0 0 20px #fff, 0 0 48px #d1d6db, 0 0 110px #899198;
}

.title-reveal {
  animation: cinematicTitle 12000ms linear forwards;
}

.title-fade {
  animation: titleFade 4000ms ease-in forwards !important;
}

@keyframes cinematicTitle {
  0% { opacity: 0; transform: translate3d(-50%,-50%,-1500px) rotateX(18deg) scale(.04); filter: blur(25px); }
  35% { opacity: 1; transform: translate3d(-50%,-50%,-180px) rotateX(3deg) scale(.8); filter: blur(3px) brightness(1.5); }
  70% { opacity: 1; transform: translate3d(-50%,-50%,0) rotateX(0) scale(1); filter: blur(0) brightness(1.8); }
  100% { opacity: 1; transform: translate3d(-50%,-50%,250px) rotateX(-2deg) scale(1.12); filter: blur(1px) brightness(1.45); }
}

@keyframes titleFade {
  0% { opacity: 1; transform: translate3d(-50%,-50%,250px) scale(1.12); filter: blur(1px) brightness(1.4); }
  100% { opacity: 0; transform: translate3d(-50%,-50%,650px) scale(1.45); filter: blur(14px) brightness(2); }
}

#fallingFlower {
  position: fixed;
  inset: -15vh 0 0;
  z-index: 180;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

#fallingFlower.visible {
  opacity: 1;
  visibility: visible;
}

.velvet-flower {
  position: absolute;
  top: -100px;
  width: var(--flower-size);
  height: var(--flower-size);
  animation: velvetCurtain var(--flower-duration) linear var(--flower-delay) forwards;
  filter: drop-shadow(0 0 8px rgba(190,200,210,.3));
}

.flower-petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 70%;
  transform-origin: 50% 100%;
  border-radius: 75% 25% 80% 20%;
  background: linear-gradient(135deg, #d8dde1 0%, #606970 18%, #111417 58%, #000 100%);
  box-shadow: inset 4px 4px 9px rgba(255,255,255,.28), inset -8px -12px 15px #000;
}

.flower-petal:nth-child(1) { transform: translate(-50%,-100%) rotate(0deg); }
.flower-petal:nth-child(2) { transform: translate(-50%,-100%) rotate(60deg); }
.flower-petal:nth-child(3) { transform: translate(-50%,-100%) rotate(120deg); }
.flower-petal:nth-child(4) { transform: translate(-50%,-100%) rotate(180deg); }
.flower-petal:nth-child(5) { transform: translate(-50%,-100%) rotate(240deg); }
.flower-petal:nth-child(6) { transform: translate(-50%,-100%) rotate(300deg); }

.flower-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  height: 20%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #f1f3f4 0 12%, #555d63 35%, #050607 70%);
  box-shadow: 0 0 12px #dce2e7;
}

@keyframes velvetCurtain {
  0% { opacity: 0; transform: translate3d(var(--start-x), -12vh, 0) rotate(0deg) scale(.35); }
  12% { opacity: 1; }
  72% { opacity: .95; transform: translate3d(var(--end-x), 78vh, 0) rotate(240deg) scale(1); }
  100% { opacity: 0; transform: translate3d(var(--final-x), 125vh, 0) rotate(470deg) scale(1.25); }
}

/* Effects and home page */

.splash {
  position: fixed;
  z-index: 10;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 2px solid rgba(220,220,220,.9);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: splashRing 900ms ease-out forwards;
  box-shadow: 0 0 10px #fff;
}

.drop {
  position: absolute;
  width: 4px;
  height: 13px;
  border-radius: 50%;
  background: #ddd;
  box-shadow: 0 0 8px #fff;
  animation: dropAway 700ms ease-out forwards;
}

@keyframes splashRing {
  to { opacity: 0; transform: translate(-50%,-50%) scale(7); }
}

@keyframes dropAway {
  to { opacity: 0; transform: rotate(var(--angle)) translateY(var(--distance)) scale(.2); }
}

.home-page {
  min-height: 100vh;
  overflow: auto;
}

.home-shell {
  position: relative;
  z-index: 5;
  width: min(1120px, 90%);
  min-height: 100vh;
  margin: auto;
  padding: 34px 0 90px;
}

.home-nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: #ddd;
  font: 700 16px Orbitron, sans-serif;
  letter-spacing: 4px;
}

.nav-mark {
  color: #bbb;
  font-size: 24px;
}

.hero {
  max-width: 850px;
  padding: 27vh 0 17vh;
}

.hero h1 {
  margin: 20px 0 24px;
  color: #eee;
  font: 900 clamp(45px, 9vw, 105px)/.95 Cinzel, Georgia, serif;
}

.hero h1 span {
  color: #999;
}

.hero p {
  max-width: 580px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.8;
}

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

.home-card {
  min-height: 170px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(5,7,9,.8);
  box-shadow: 0 14px 35px #000;
}

.home-card h2 {
  margin: 0 0 14px;
  color: #ddd;
  font: 700 19px Cinzel, Georgia, serif;
}

.home-card p {
  margin: 0;
  color: #999;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .start-card { transform: translateY(7vh); }
  .label, #mainTitle { top: 75vh; }
  .hero { padding-top: 20vh; }
  .home-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .start-card { padding: 42px 22px 36px; }
  .label { width: 94%; font-size: clamp(27px, 8vw, 48px); }
  #skipBtn { top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
