/* Fredoka One — used for the 63 wordmark */
@font-face {
  font-family: "Fredoka One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/fredoka-one.woff2) format("woff2");
}

/* Fredoka (variable) — latin-ext */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/fredoka-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fredoka (variable) — latin */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/fredoka-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #00a878;
  --green-dark: #007e5a;
  --green-deeper: #005a40;
  --red: #dd3636;
  --yellow: #feea00;
  --yellow-ink: #4b230d;
  --blue: #6cd4ff;
  --blue-ink: #073968;
  --orange: #ff7733;
  --purple: #6931d0;
  --warning: #e69500;
  --black: #000;
  --white: #fff;
  --grey: #b8b8b8;
  --grey-light: #f3f3f3;
  --grey-dark: #808080;
  --paper: #fbfaf6;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  --r-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Fredoka", -apple-system, system-ui, sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ── Logo / brand type ─────────────────────────────────── */
.logo63 {
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-shadow: 0 0.055em 0.0em rgba(0, 0, 0, 0.2);
}

/* ── Page-level chrome ────────────────────────────────── */
.page {
  width: 100%;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--green);
  color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .logo {
  font-size: 30px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 17px;
  font-weight: 500;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-new {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}
.section.tight {
  padding: 64px 32px;
}

.bg-green {
  background: var(--green);
  color: var(--white);
}
.bg-white {
  background: var(--white);
  color: var(--black);
}
.bg-paper {
  background: var(--paper);
  color: var(--black);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: var(--white);
  color: var(--black);
}

/* App-store badges (using the official artwork) */
.stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.store-btn {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.08s ease;
}
.store-btn:active {
  transform: translateY(1px);
}
.store-btn img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* ── Phone frame ─────────────────────────────────────── */
.phone {
  position: relative;
  border-radius: 44px;
  background: #0a0a0a;
  padding: 8px;
  box-shadow: 0 16px 0.1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.phone .screen {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1206 / 2622;
  background: var(--grey-light);
}
.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── Pills / chips ──────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}
.pill.solid {
  background: var(--white);
  color: var(--green-deeper);
}
.pill.red {
  background: var(--red);
  color: var(--white);
}
/* For light sections (bg-white / bg-paper) where the translucent-white
   default would vanish. */
.pill.tint {
  background: rgba(0, 168, 120, 0.12);
  color: var(--green-dark);
}

/* ── Decorative text underlines ─────────────────────── */
.underline-red {
  background-image: linear-gradient(transparent 78%, var(--red) 78%, var(--red) 92%, transparent 92%);
  padding: 0 4px;
}
.underline-yellow {
  background-image: linear-gradient(transparent 78%, var(--yellow) 78%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
}

/* "3 rounds" stamp */
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  transform: rotate(-12deg);
  text-align: center;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--green-deeper);
  color: var(--white);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-inner h4 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 17px;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}
.footer-inner ul li a {
  color: inherit;
  text-decoration: none;
}
.legal {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.5;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px 32px 96px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1.logo {
  font-size: clamp(160px, 26vw, 380px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.06em;
  color: var(--white);
  line-height: 0.85;
}
.hero .tagline {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  margin: 18px 0 8px;
  max-width: 540px;
  opacity: 0.95;
}
.hero .sub {
  font-size: 18px;
  max-width: 460px;
  margin: 0 0 28px;
  opacity: 0.92;
}
.hero .pill-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-phone-wrap .phone {
  width: 320px;
  transform: rotate(4deg);
}
.hero-phone-wrap .stamp {
  position: absolute;
  top: 8px;
  right: -10px;
  z-index: 3;
}
.confetti {
  position: absolute;
  pointer-events: none;
  inset: 0;
}
.confetti span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.6;
}

/* Facts strip */
.facts {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.facts .fact {
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.facts .fact b {
  font-weight: 600;
  font-size: 22px;
}
.facts .sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}


h2.section-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
}
.section-lead {
  font-size: 20px;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--grey-dark);
}
.bg-green .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

/* Setup grid */
.setup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.setup .step {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 26px;
}
.setup .step .num {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 56px;
  color: var(--green);
  line-height: 0.9;
  margin-bottom: 6px;
}
.setup .step h4 {
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 4px;
  line-height: 1.15;
}
.setup .step p {
  font-size: 15px;
  color: var(--grey-dark);
  margin: 0;
  line-height: 1.35;
}

/* Rounds grid */
.rounds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
/* One design, drawn once and scaled to whatever square the grid gives it.
   The card is its own query container, so every inner size below is a share
   of the card width (cqw) — insets, type, the number, the corner radius all
   scale together and the proportions never drift as the square resizes.
   1cqw ≈ 3.92px at the widest 3-up layout (the reference these were tuned at),
   which is how the old px values map to the cqw values here. */
.round {
  container-type: inline-size;
  --inset: 7.65cqw;
  /* % (not cqw) because this is the card's OWN radius — cqw resolves against
     an ancestor container, of which the card has none, so it would fall back
     to the viewport. % of the (square) border box is self-referential: 9.18%
     ≈ 36px at the reference width, and scales with the card. */
  border-radius: 9.18%;
  padding: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.7);
}
.round.r1 {
  background: #00a878;
}
.round.r2 {
  background: #ffce41;
}
.round.r3 {
  background: #ff6b35;
}

/* Big round number in the top-right corner, its label centred over the
   digit. Its top lines up with the title's top (same inset). */
.round .r-num {
  position: absolute;
  top: var(--inset);
  right: var(--inset);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.05em;
}
.round .r-word {
  font-size: 4.08cqw;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.round .r-digit {
  font-size: 26.53cqw;
  margin-top: 0.51cqw;
}

/* Title starts at the same inset as the round number, subtitle beneath. */
.round .r-copy {
  position: absolute;
  top: var(--inset);
  left: var(--inset);
  max-width: 60%;
}
/* On the darker green/orange cards the copy reads in white; the ROUND
   label + number stay black. Round 2 (gold) keeps the black copy. */
.round.r1 .r-copy,
.round.r3 .r-copy {
  color: var(--white);
}
.round h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 10cqw;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}
.round .r-sub {
  font-size: 4.2cqw;
  line-height: 1.4;
  margin: 3cqw 0 0;
}

/* The "For 'Home Alone'" example caption — tucked into the bottom-left
   corner, small and low-contrast so it labels the clues without competing
   with them. Black-with-opacity on every card, as intended. */
.round .r-for {
  position: absolute;
  right: calc(var(--inset) * 1);
  bottom: calc(var(--inset) / 2);
  max-width: 55%;
  font-size: 3.32cqw;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.4);
}

/* Wrappers are inert; the bubbles position against the square card. */
.round .r-example,
.round .bubbles {
  display: contents;
}

/* Bubble = a fixed-ratio box with the provided SVG as its background
   (kept to ratio, never stretched). Absolutely positioned in the lower
   part of the card; width is a share of the card so every bubble is the
   same size, and the clue size is a share of the bubble width (cqw), so
   it scales with it. All bubbles are tilted 12° to the left. */
.bubble {
  container-type: inline-size;
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 60%;
  aspect-ratio: 2012 / 1775;
  background: url("/assets/speech_bubble.svg") no-repeat center / contain;
  display: grid;
  transform: translateX(-50%) rotate(-12deg);
  transform-origin: center;
}
.bubble .clue {
  grid-area: 1 / 1;
  place-self: center;
  width: 70%;
  /* The SVG's round body sits above the tail (body centre ≈ 39% down the
     box), so the clue is nudged up off the tail. margin-% is of the box
     width; 20% lands the text on the body's centre — 16% left it low,
     with more air above than below. */
  margin-bottom: 20%;
  text-align: center;
  color: #16211c;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  font-size: var(--fs, 8cqw);
}
.bubble .clue-emoji {
  display: block;
  width: 48cqw;
  height: auto;
  margin: 0 auto;
}

/* Clue size per round — the bubble box stays the same size. */
.round.r1 .bubble:not(.bubble-2) .clue {
  --fs: 9cqw;
}
.round.r2 .bubble .clue {
  --fs: 18cqw;
}
.round.r3 .bubble .clue {
  margin-bottom: 18%;
}

/* Round 1: nudge the main bubble left to make room for the reply that
   overlaps below it. */
.round.r1 .bubble:not(.bubble-2) {
  left: 36%;
  bottom: 4%;
  z-index: 2;
}

/* Round 1's reply: smaller, overlapping to the lower-right, tilted the
   other way (+8deg) with its tail mirrored. */
.bubble.bubble-2 {
  left: 74%;
  bottom: 10%;
  width: 40%;
  z-index: 1;
  transform: translateX(-50%) rotate(8deg) scaleX(-1);
}
.bubble.bubble-2 .clue {
  --fs: 10cqw;
  transform: scaleX(-1);
}

/* Fluent emoji inline images */
.fluent-emoji {
  display: inline-block;
  vertical-align: -0.2em;
  width: 1.1em;
  height: 1.1em;
}
.fluent-emoji.lg {
  width: 48px;
  height: 48px;
  vertical-align: middle;
}

/* Tabler-style icons used inside text (heart, etc.) */
.i-heart {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  color: var(--red);
  display: inline-block;
}

/* Packs (NEW) section */
.packs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.packs-hero .copy h2.section-title {
  color: var(--white);
}
.packs-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.packs-phones {
  position: relative;
  height: 520px;
  display: block;
}
.packs-phones .phone {
  width: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 30px;
}
.packs-phones .phone .screen {
  border-radius: 25px;
}
.packs-phones .phone.back {
  transform: translate(-90%, -50%) rotate(-6deg);
  z-index: 1;
}
.packs-phones .phone.front {
  transform: translate(-10%, -38%) rotate(5deg);
  z-index: 2;
}
.packs-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.packs-features .pf {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.packs-features .pf .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  color: var(--green-deeper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.packs-features .pf .icon svg {
  width: 26px;
  height: 26px;
}
.packs-features .pf h4 {
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}
.packs-features .pf p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.85;
}
.packs-url {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.url-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green-deeper);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 22px;
  font-family: "Fredoka", sans-serif;
  text-decoration: none;
}
.url-bubble .arrow {
  font-size: 18px;
}

/* Community packs strip */
.community {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.community .phone {
  width: 300px;
  margin: 0 auto;
}

/* Pack list — mirrors packs.63.pt PackPreview + row layout */
.pack-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  margin: 24px 0 0;
}
.pack-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.pack-preview {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  box-shadow: 0 5px 0.1px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.pack-preview .pe {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.pack-preview .pe.back { left: 40%; top: 40%; z-index: 1; }
.pack-preview .pe.front { left: 60%; top: 60%; z-index: 2; }

.pack-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  color: var(--black);
}
.pack-info .name {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pack-info .meta {
  font-size: 13px;
  color: var(--grey-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.free-callout {
  font-size: 17px;
  font-weight: 500;
  color: var(--green-dark);
  margin: -16px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.free-callout .check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

/* Screenshot strip */
.shots-strip {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.shots-strip .phone {
  width: 200px;
}

/* On mobile, the strip becomes a smooth snap-scrolling carousel
   with a Flutter-style bouncy overscroll (see inline script in index.html). */
@media (max-width: 880px) {
  .shots-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 8px 22px 24px;
    margin: 24px -22px 0;
    scroll-padding-inline: 22px;
    will-change: transform;
  }
  .shots-strip::-webkit-scrollbar {
    display: none;
  }
  .shots-strip .phone {
    scroll-snap-align: center;
    width: 220px;
    flex-shrink: 0;
  }
}

/* Final CTA */
.final {
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 auto 12px;
  max-width: 980px;
}
.final p {
  font-size: 20px;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.9;
}
.final .stores {
  justify-content: center;
  flex-wrap: nowrap;
}
.final .store-btn {
  flex: 0 1 auto;
  min-width: 0;
}
.final .store-btn img {
  height: auto;
  max-height: 56px;
  width: 100%;
  max-width: 220px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 880px) {
  .section {
    padding: 64px 22px;
  }
  .nav-links {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-inner,
  .packs-hero,
  .community {
    grid-template-columns: 1fr;
  }
  .setup,
  .rounds,
  .packs-features {
    grid-template-columns: 1fr 1fr;
  }
  .pack-tiles {
    grid-template-columns: 1fr 1fr;
  }
  .hero-phone-wrap .phone {
    width: 260px;
  }
  .packs-phones {
    height: 460px;
    margin: 0 auto;
    max-width: 360px;
  }
  .packs-phones .phone {
    width: 190px;
    border-radius: 26px;
  }
  .packs-phones .phone .screen {
    border-radius: 21px;
  }
  .packs-phones .phone.back {
    transform: translate(-95%, -50%) rotate(-6deg);
  }
  .packs-phones .phone.front {
    transform: translate(-5%, -38%) rotate(5deg);
  }
}
@media (max-width: 540px) {
  .setup,
  .rounds,
  .packs-features {
    grid-template-columns: 1fr;
  }
  .pack-tiles {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 32px 22px 56px;
  }
  .facts {
    gap: 10px;
    padding: 18px 22px;
  }
  .facts .fact {
    font-size: 15px;
  }
  .facts .fact b {
    font-size: 18px;
  }
}
