:root {
  --black: #111111;
  --charcoal: #1d1d1b;
  --yellow: #ffd437;
  --yellow-deep: #efb900;
  --paper: #fff8d7;
  --soft: rgba(255, 255, 255, 0.78);
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.18);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

h1,
h2,
p,
blockquote {
  overflow-wrap: anywhere;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--yellow) 0%, #ffe97a 46%, var(--paper) 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

.hero::before {
  position: absolute;
  inset: auto -18vw -28vw auto;
  width: 68vw;
  max-width: 900px;
  aspect-ratio: 1;
  content: "";
  border: 44px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  top: 18%;
  right: clamp(20px, 6vw, 92px);
  width: clamp(84px, 16vw, 210px);
  aspect-ratio: 1;
  content: "T";
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  border: 3px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  color: var(--yellow);
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow);
}

.topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.brand,
.nav-link {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 14px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.money-clock {
  position: absolute;
  z-index: 3;
  top: 94px;
  right: clamp(20px, 5vw, 72px);
  display: flex;
  width: min(330px, calc(100% - 40px));
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
}

.money-clock p,
.money-clock span {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.money-clock strong {
  display: block;
  margin: 3px 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.clock-face {
  position: relative;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border: 4px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.clock-face::after {
  position: absolute;
  right: 9px;
  bottom: 13px;
  content: "$";
  color: rgba(17, 17, 17, 0.22);
  font-size: 1.35rem;
  font-weight: 900;
}

.clock-tick {
  position: absolute;
  background: var(--black);
}

.tick-12,
.tick-6 {
  left: 50%;
  width: 4px;
  height: 9px;
  transform: translateX(-50%);
}

.tick-12 {
  top: 5px;
}

.tick-6 {
  bottom: 5px;
}

.tick-3,
.tick-9 {
  top: 50%;
  width: 9px;
  height: 4px;
  transform: translateY(-50%);
}

.tick-3 {
  right: 5px;
}

.tick-9 {
  left: 5px;
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 4px;
  transform-origin: bottom center;
  border-radius: 999px;
  background: var(--black);
}

.hour-hand {
  height: 20px;
}

.minute-hand {
  height: 26px;
}

.second-hand {
  width: 2px;
  height: 29px;
  background: #ff4f64;
}

.clock-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--black);
  border-radius: 50%;
  background: #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 96px;
}

.cofounder-badge {
  display: inline-flex;
  max-width: min(100%, 620px);
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  padding: 14px 20px 14px 14px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.16);
}

.cofounder-badge p {
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.drawn-cat {
  position: relative;
  flex: 0 0 auto;
  width: 86px;
  height: 74px;
  transform: rotate(-3deg);
}

.cat-face {
  position: absolute;
  right: 6px;
  bottom: 0;
  width: 74px;
  height: 62px;
  border: 3px solid var(--black);
  border-radius: 48% 48% 42% 42%;
  background: #fff3df;
}

.cat-ear {
  position: absolute;
  top: 2px;
  width: 30px;
  height: 34px;
  border: 3px solid var(--black);
  background: #fff3df;
}

.cat-ear::after {
  position: absolute;
  inset: 8px 7px;
  content: "";
  background: #ff9ca8;
}

.cat-ear-left {
  left: 11px;
  transform: rotate(-23deg) skewY(22deg);
  border-radius: 8px 8px 3px 8px;
}

.cat-ear-right {
  right: 8px;
  transform: rotate(23deg) skewY(-22deg);
  border-radius: 8px 8px 8px 3px;
}

.cat-eye {
  position: absolute;
  top: 19px;
  width: 19px;
  height: 24px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.cat-eye::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
}

.cat-eye-left {
  left: 15px;
}

.cat-eye-right {
  right: 15px;
}

.cat-nose {
  position: absolute;
  top: 39px;
  left: 50%;
  width: 10px;
  height: 8px;
  transform: translateX(-50%);
  border: 2px solid var(--black);
  border-radius: 50% 50% 60% 60%;
  background: #ff7d8d;
}

.cat-mouth {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 18px;
  height: 8px;
  transform: translateX(-50%);
  border-bottom: 3px solid var(--black);
  border-radius: 0 0 18px 18px;
}

.cat-whisker {
  position: absolute;
  top: 42px;
  width: 20px;
  height: 3px;
  background: var(--black);
}

.cat-whisker-left {
  left: -9px;
}

.cat-whisker-right {
  right: -9px;
}

.cat-whisker-left.cat-whisker-top,
.cat-whisker-right.cat-whisker-bottom {
  transform: rotate(12deg);
}

.cat-whisker-left.cat-whisker-bottom,
.cat-whisker-right.cat-whisker-top {
  top: 50px;
  transform: rotate(-12deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 8.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-note {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.36;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateX(-50%);
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  transform: rotate(45deg) translate(-2px, -2px);
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.ticker-band {
  overflow: hidden;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background: var(--black);
  color: var(--yellow);
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 32px;
  padding: 16px 20px;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.quotes {
  padding: clamp(70px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 212, 55, 0.38), transparent 24%),
    #ffffff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5.6vw, 5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.quote-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  padding: 24px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.quote-card-large {
  grid-column: span 4;
  background: var(--yellow);
}

.quote-card-accent {
  grid-column: span 4;
  background: var(--black);
  color: var(--yellow);
}

.quote-mark {
  font-size: 0.88rem;
  font-weight: 900;
}

blockquote {
  margin: 42px 0 26px;
  font-size: clamp(1.55rem, 3.2vw, 3.3rem);
  font-weight: 900;
  line-height: 0.98;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.quote-card-accent p {
  color: rgba(255, 212, 55, 0.72);
}

.million-section {
  padding: clamp(72px, 10vw, 132px) 0;
  border-top: 3px solid var(--black);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 79, 100, 0.24), transparent 26%),
    linear-gradient(135deg, var(--yellow) 0%, #fff1a8 52%, #ffffff 100%);
}

.million-hero {
  display: grid;
  max-width: 980px;
  gap: 18px;
  margin-bottom: 28px;
}

.million-hero h2 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.million-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1rem, 2vw, 1.38rem);
  font-weight: 800;
  line-height: 1.34;
}

.spend-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.spend-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  overflow: hidden;
  padding: 24px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.16);
}

.spend-card-large,
.spend-card-accent {
  grid-column: span 3;
}

.spend-card-accent {
  background: var(--black);
  color: var(--yellow);
}

.spend-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  content: "";
  border: 24px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
}

.spend-card-accent::after {
  border-color: rgba(255, 212, 55, 0.16);
}

.spend-label {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spend-card-accent .spend-label,
.spend-card-accent p {
  color: rgba(255, 212, 55, 0.68);
}

.spend-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 0.96;
}

.spend-card strong {
  display: block;
  margin: 28px 0 16px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.82;
}

.spend-card p:not(.spend-label) {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.spend-icon {
  position: relative;
  display: grid;
  width: 74px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
}

.spend-icon::before,
.spend-icon::after {
  position: absolute;
  content: "";
}

.nails-icon::before {
  width: 54px;
  height: 44px;
  border: 3px solid var(--black);
  border-radius: 18px 18px 28px 28px;
  background: #ff9ca8;
}

.nails-icon::after {
  top: 8px;
  width: 18px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
}

.car-icon::before {
  bottom: 13px;
  width: 66px;
  height: 30px;
  border: 3px solid var(--black);
  border-radius: 16px 20px 10px 10px;
  background: var(--yellow);
}

.car-icon::after {
  bottom: 4px;
  width: 64px;
  height: 16px;
  border-right: 11px solid var(--black);
  border-left: 11px solid var(--black);
}

.house-icon::before {
  bottom: 0;
  width: 56px;
  height: 38px;
  border: 3px solid var(--black);
  background: #ffffff;
}

.house-icon::after {
  top: 0;
  width: 46px;
  height: 46px;
  transform: rotate(45deg);
  border-top: 3px solid var(--black);
  border-left: 3px solid var(--black);
  background: var(--yellow);
}

.milan-icon::before {
  width: 58px;
  height: 42px;
  border: 3px solid var(--black);
  border-radius: 50% 50% 4px 4px;
  background: #ffffff;
}

.milan-icon::after {
  bottom: 3px;
  width: 66px;
  height: 8px;
  background: var(--black);
}

.japan-icon::before {
  width: 56px;
  height: 56px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: radial-gradient(circle, #ff4f64 0 16px, #ffffff 17px);
}

.japan-icon::after {
  right: 2px;
  bottom: 3px;
  width: 28px;
  height: 28px;
  border-right: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}

.call-section {
  padding: clamp(70px, 10vw, 126px) 0;
  border-top: 3px solid var(--black);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.country-card {
  min-height: 230px;
  padding: 24px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.country-visual {
  position: relative;
  overflow: hidden;
  height: 156px;
  margin: 0 0 18px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: var(--yellow);
  cursor: pointer;
}

.country-visual::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 7px 10px;
  content: "нажми";
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.country-visual:focus-visible {
  outline: 4px solid #ff4f64;
  outline-offset: 4px;
}

.country-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.92);
  background-position: center;
  background-size: cover;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 0.8;
  transition: opacity 560ms ease, transform 560ms ease;
  transform: scale(1.04);
}

.country-slide > * {
  position: relative;
  z-index: 2;
}

.country-slide {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.country-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.country-slide::before,
.country-slide::after {
  position: absolute;
  content: "";
}

.country-slide::before {
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.country-slide::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background:
    linear-gradient(90deg, var(--black) 0 14px, transparent 14px 24px),
    linear-gradient(90deg, transparent 0 28px, var(--black) 28px 48px, transparent 48px 60px),
    linear-gradient(90deg, transparent 0 64px, var(--black) 64px 92px, transparent 92px 104px),
    linear-gradient(90deg, transparent 0 112px, var(--black) 112px 144px, transparent 144px 160px);
  opacity: 0.82;
}

.us-slide-1 {
  background-image: linear-gradient(135deg, rgba(32, 58, 114, 0.58), rgba(226, 74, 74, 0.42)), url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=800&q=70");
}

.us-slide-2 {
  background: linear-gradient(135deg, #ef7c45 0%, #2f80a8 100%);
}

.us-slide-3 {
  background: linear-gradient(135deg, #5d3fd3 0%, #ffb347 100%);
}

.gb-slide-1 {
  background-image: linear-gradient(135deg, rgba(29, 53, 87, 0.58), rgba(215, 38, 56, 0.42)), url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=800&q=70");
}

.gb-slide-2 {
  background: linear-gradient(135deg, #254441 0%, #9ad1d4 100%);
}

.gb-slide-3 {
  background: linear-gradient(135deg, #3f2e56 0%, #c9a227 100%);
}

.lv-slide-1 {
  background-image: linear-gradient(135deg, rgba(123, 30, 43, 0.58), rgba(241, 212, 179, 0.32)), url("https://commons.wikimedia.org/wiki/Special:FilePath/Views%20from%20St.%20Peter%27s%20Church%20Spire%2C%20Riga%2020180808-2.jpg");
}

.lv-slide-2 {
  background: linear-gradient(135deg, #0e7c7b 0%, #f4d35e 100%);
}

.lv-slide-3 {
  background: linear-gradient(135deg, #5a2a27 0%, #d9cab3 100%);
}

.de-slide-1 {
  background-image: linear-gradient(135deg, rgba(29, 29, 27, 0.58), rgba(221, 59, 42, 0.35), rgba(247, 201, 72, 0.28)), url("https://images.unsplash.com/photo-1560969184-10fe8719e047?auto=format&fit=crop&w=800&q=70");
}

.de-slide-2 {
  background: linear-gradient(135deg, #214e34 0%, #f0c987 100%);
}

.de-slide-3 {
  background: linear-gradient(135deg, #1b4965 0%, #bee9e8 100%);
}

.fr-slide-1 {
  background-image: linear-gradient(135deg, rgba(35, 61, 139, 0.58), rgba(247, 247, 247, 0.16), rgba(215, 38, 56, 0.35)), url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=800&q=70");
}

.fr-slide-2 {
  background: linear-gradient(135deg, #55286f 0%, #ffb703 100%);
}

.fr-slide-3 {
  background: linear-gradient(135deg, #0077b6 0%, #ffd166 100%);
}

.jp-slide-1 {
  background-image: radial-gradient(circle at 74% 30%, rgba(230, 57, 70, 0.68) 0 26px, transparent 27px), linear-gradient(135deg, rgba(248, 249, 250, 0.28), rgba(157, 217, 210, 0.28)), url("https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=800&q=70");
}

.jp-slide-2 {
  background: linear-gradient(135deg, #2b2d42 0%, #ef233c 100%);
}

.jp-slide-3 {
  background: linear-gradient(135deg, #14213d 0%, #fca311 100%);
}

.country-card:hover {
  transform: translate(-4px, -4px);
  background: var(--yellow);
  box-shadow: 14px 14px 0 rgba(17, 17, 17, 0.18);
}

.country-code {
  display: inline-flex;
  min-width: 48px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
}

.country-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.country-card a {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 1.02rem;
  font-weight: 900;
}

.country-card:hover a {
  background: var(--black);
  color: var(--yellow);
}

.country-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.earning-modal[hidden] {
  display: none;
}

.earning-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.68);
  cursor: pointer;
}

.earning-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(980px, 100%);
  max-height: min(760px, 92svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  border: 4px solid var(--black);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 18px 18px 0 rgba(255, 212, 55, 0.78);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.earning-photo {
  min-height: 460px;
  background-color: var(--black);
  background-position: center;
  background-size: cover;
}

.earning-copy {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: var(--yellow);
}

.earning-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.94;
}

.earning-copy strong {
  display: block;
  margin: 24px 0;
  font-size: clamp(3.2rem, 10vw, 7.8rem);
  font-weight: 900;
  line-height: 0.82;
}

.earning-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.38;
}

.modal-call {
  display: inline-flex;
  width: fit-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 18px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
}

.closing {
  padding: clamp(78px, 12vw, 150px) 0;
  background: var(--yellow);
  border-top: 3px solid var(--black);
}

.closing-inner {
  max-width: 960px;
}

.cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 24px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta:focus-visible {
  outline: 4px solid #ff4f64;
  outline-offset: 4px;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
}

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

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .hero::after {
    top: auto;
    right: 24px;
    bottom: 76px;
  }

  .money-clock {
    position: relative;
    top: auto;
    right: auto;
    width: min(100% - 40px, 520px);
    margin: 92px auto 0;
  }

  .hero-content {
    padding-top: 34px;
    padding-bottom: 220px;
  }

  .quote-card,
  .quote-card-large,
  .quote-card-accent {
    grid-column: span 3;
  }

  .spend-card,
  .spend-card-large,
  .spend-card-accent {
    grid-column: span 3;
  }

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

  .earning-dialog {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .earning-photo,
  .earning-copy {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 20px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-link {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 94svh;
  }

  .money-clock {
    width: min(100% - 28px, 390px);
    gap: 12px;
    margin-top: 86px;
    padding: 12px;
  }

  .clock-face {
    width: 62px;
    height: 62px;
  }

  .hour-hand {
    height: 17px;
  }

  .minute-hand {
    height: 22px;
  }

  .second-hand {
    height: 25px;
  }

  .money-clock strong {
    font-size: 1.42rem;
  }

  .hero-content {
    width: min(100% - 28px, 540px);
    padding: 28px 0 190px;
  }

  .cofounder-badge {
    max-width: 100%;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    border-radius: 28px;
  }

  .drawn-cat {
    width: 72px;
    height: 62px;
  }

  .cat-face {
    width: 62px;
    height: 52px;
  }

  .cat-ear {
    width: 25px;
    height: 28px;
  }

  .cat-eye {
    top: 15px;
    width: 16px;
    height: 20px;
  }

  .cat-eye-left {
    left: 12px;
  }

  .cat-eye-right {
    right: 12px;
  }

  .cat-nose {
    top: 32px;
  }

  .cat-mouth {
    top: 39px;
  }

  .cat-whisker {
    top: 35px;
    width: 16px;
  }

  .cat-whisker-left.cat-whisker-bottom,
  .cat-whisker-right.cat-whisker-top {
    top: 42px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-note {
    font-size: 1rem;
  }

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

  .quote-card,
  .quote-card-large,
  .quote-card-accent {
    min-height: 240px;
    grid-column: auto;
  }

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

  .spend-card,
  .spend-card-large,
  .spend-card-accent {
    min-height: 250px;
    grid-column: auto;
  }

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

  .country-card {
    min-height: 206px;
  }

  .country-visual {
    height: 136px;
  }

  .earning-modal {
    padding: 14px;
  }

  .earning-copy {
    padding: 26px;
  }

  .earning-copy strong {
    font-size: 4rem;
  }

  blockquote {
    margin-top: 34px;
  }
}

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