/* ==========================================================================
   Block Winner — Gamified 3D claymorphism landing page
   Light warm palette · royal blue card · chunky stroke typography
   ========================================================================== */

:root {
  --bw-gold-50: #fffbeb;
  --bw-gold-100: #fef3c7;
  --bw-gold-200: #fde68a;
  --bw-gold-300: #fcd34d;
  --bw-gold-400: #fbbf24;
  --bw-gold-500: #f59e0b;

  --bw-blue-700: #1d4ed8;
  --bw-blue-800: #1e40af;
  --bw-blue-900: #1e3a8a;

  --bw-red: #e11d48;
  --bw-red-dark: #be123c;
  --bw-green: #22c55e;
  --bw-green-dark: #16a34a;
  --bw-purple: #a855f7;
  --bw-purple-dark: #9333ea;
  --bw-sky: #38bdf8;

  --bw-wood: #b45309;
  --bw-wood-dark: #92400e;
  --bw-wood-light: #d97706;

  --bw-text: #1e293b;
  --bw-text-muted: #475569;
  --bw-white: #ffffff;

  --bw-shadow-soft: 0 8px 24px rgba(30, 58, 138, 0.18);
  --bw-shadow-3d: 0 6px 0 rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.35);
  --bw-shadow-press: 0 2px 0 rgba(0, 0, 0, 0.2), inset 0 3px 6px rgba(0, 0, 0, 0.12);

  --bw-radius-lg: 24px;
  --bw-radius-xl: 32px;
  --bw-radius-pill: 999px;

  --bw-nav-h: 72px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--bw-text);
  background: var(--bw-gold-100);
  background-image:
    linear-gradient(135deg, var(--bw-gold-50) 0%, var(--bw-gold-200) 45%, var(--bw-gold-300) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 28px,
      rgba(245, 158, 11, 0.08) 28px,
      rgba(245, 158, 11, 0.08) 56px
    );
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Skip link */
.bw-skip {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--bw-blue-800);
  color: var(--bw-white);
  border-radius: 8px;
  font-weight: 700;
}

.bw-skip:focus {
  top: 16px;
}

/* Floating background blocks */
.bw-bg-blocks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bw-float-block {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--bw-shadow-3d);
  opacity: 0.55;
}

.bw-float-block--1 {
  width: 56px;
  height: 56px;
  top: 12%;
  left: 6%;
  background: linear-gradient(145deg, var(--bw-red), var(--bw-red-dark));
  transform: rotate(-12deg);
  animation: bw-float 7s ease-in-out infinite;
}

.bw-float-block--2 {
  width: 40px;
  height: 40px;
  top: 28%;
  right: 8%;
  background: linear-gradient(145deg, var(--bw-sky), var(--bw-blue-700));
  transform: rotate(18deg);
  animation: bw-float 9s ease-in-out infinite reverse;
}

.bw-float-block--3 {
  width: 48px;
  height: 48px;
  bottom: 30%;
  left: 4%;
  background: linear-gradient(145deg, var(--bw-green), var(--bw-green-dark));
  transform: rotate(8deg);
  animation: bw-float 8s ease-in-out 1s infinite;
}

.bw-float-block--4 {
  width: 32px;
  height: 32px;
  top: 55%;
  right: 5%;
  background: linear-gradient(145deg, var(--bw-purple), var(--bw-purple-dark));
  transform: rotate(-20deg);
  animation: bw-float 6s ease-in-out 0.5s infinite;
}

.bw-float-block--5 {
  width: 44px;
  height: 44px;
  bottom: 18%;
  right: 12%;
  background: linear-gradient(145deg, var(--bw-gold-400), var(--bw-gold-500));
  transform: rotate(14deg);
  animation: bw-float 10s ease-in-out infinite reverse;
}

.bw-float-block--6 {
  width: 36px;
  height: 36px;
  top: 8%;
  right: 22%;
  background: linear-gradient(145deg, #fb7185, var(--bw-red));
  transform: rotate(-8deg);
  animation: bw-float 7.5s ease-in-out 2s infinite;
}

@keyframes bw-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}

/* ==========================================================================
   Navbar — centered floating arcade capsule
   ========================================================================== */
.bw-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  transition: top 0.25s ease;
}

.bw-header.is-scrolled {
  top: 8px;
}

.bw-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(920px, 100%);
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid rgba(30, 64, 175, 0.12);
  border-radius: var(--bw-radius-pill);
  box-shadow:
    0 4px 0 rgba(30, 58, 138, 0.1),
    0 12px 32px rgba(30, 58, 138, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.bw-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.bw-nav__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: var(--bw-shadow-3d);
}

.bw-nav__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bw-blue-900);
  white-space: nowrap;
}

.bw-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}

.bw-nav__bar {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--bw-blue-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.bw-nav__panel {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.bw-nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bw-text-muted);
  border-radius: var(--bw-radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.bw-nav__link:hover,
.bw-nav__link:focus-visible {
  color: var(--bw-blue-800);
  background: rgba(37, 99, 235, 0.08);
  outline: none;
}

.bw-nav__link--cta {
  background: linear-gradient(180deg, var(--bw-red) 0%, var(--bw-red-dark) 100%);
  color: var(--bw-white) !important;
  box-shadow: 0 4px 0 var(--bw-red-dark), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bw-nav__link--cta:hover,
.bw-nav__link--cta:focus-visible {
  background: linear-gradient(180deg, #f43f5e 0%, var(--bw-red) 100%);
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--bw-red-dark);
}

/* ==========================================================================
   Stroke text (game-style chunky headlines)
   ========================================================================== */
.bw-stroke-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bw-gold-300);
  text-shadow:
    0 3px 0 var(--bw-gold-500),
    0 0 0 #92400e,
    -2px -2px 0 #92400e,
    2px -2px 0 #92400e,
    -2px 2px 0 #92400e,
    2px 2px 0 #92400e;
}

.bw-stroke-text--accent {
  color: #fef08a;
}

.bw-stroke-text--dark {
  color: var(--bw-gold-300);
  text-shadow:
    0 3px 0 #b45309,
    -2px -2px 0 #78350f,
    2px -2px 0 #78350f,
    -2px 2px 0 #78350f,
    2px 2px 0 #78350f;
}

/* ==========================================================================
   Buttons — 3D press effect
   ========================================================================== */
.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bw-white);
  border-radius: 16px;
  box-shadow: var(--bw-shadow-3d);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.bw-btn__icon {
  width: 18px;
  height: 18px;
}

.bw-btn--apple {
  background: linear-gradient(180deg, #3b82f6 0%, var(--bw-blue-700) 100%);
  box-shadow: 0 5px 0 #1e3a8a, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bw-btn--play {
  background: linear-gradient(180deg, var(--bw-green) 0%, var(--bw-green-dark) 100%);
  box-shadow: 0 5px 0 #15803d, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bw-btn:hover {
  transform: translateY(2px);
}

.bw-btn--apple:hover {
  box-shadow: 0 2px 0 #1e3a8a, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bw-btn--play:hover {
  box-shadow: 0 2px 0 #15803d, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bw-btn:active {
  transform: translateY(4px);
  box-shadow: var(--bw-shadow-press);
}

.bw-btn:focus-visible {
  outline: 3px solid var(--bw-gold-400);
  outline-offset: 3px;
}

.bw-btn--lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 18px;
}

.bw-btn--full {
  width: 100%;
}

/* ==========================================================================
   Hero — stacked central card + phone
   ========================================================================== */
.bw-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--bw-nav-h) + 48px) 20px 80px;
}

.bw-hero__stage {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bw-hero__card {
  width: 100%;
  padding: 36px 28px 32px;
  text-align: center;
  background: linear-gradient(165deg, var(--bw-blue-800) 0%, var(--bw-blue-900) 100%);
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--bw-radius-xl);
  box-shadow:
    0 16px 0 rgba(15, 23, 42, 0.2),
    0 32px 64px rgba(30, 58, 138, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.bw-hero__scorebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bw-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bw-white);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bw-radius-pill);
}

.bw-score-pill svg {
  width: 14px;
  height: 14px;
}

.bw-hero__banner {
  width: min(420px, 92%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.bw-hero__subtitle {
  margin: 16px 0 24px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.bw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bw-hero__phone-wrap {
  position: relative;
}

.bw-phone {
  position: relative;
}

.bw-phone__frame {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: linear-gradient(145deg, #334155, #1e293b);
  border-radius: 36px;
  box-shadow:
    0 20px 48px rgba(30, 58, 138, 0.3),
    inset 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.bw-phone__screen {
  width: min(280px, 72vw);
  border-radius: 28px;
  aspect-ratio: 390 / 844;
  object-fit: cover;
}

.bw-phone__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.bw-section {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.bw-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.bw-section__inner--wide {
  max-width: 1100px;
}

.bw-section__head {
  text-align: center;
  margin-bottom: 48px;
}

.bw-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bw-blue-800);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(30, 64, 175, 0.15);
  border-radius: var(--bw-radius-pill);
}

.bw-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--bw-blue-900);
  margin-bottom: 12px;
}

.bw-section__lead {
  font-size: 1.05rem;
  color: var(--bw-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Features — wooden puzzle board grid */
.bw-section--features {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
}

.bw-board__frame {
  padding: 20px;
  background: linear-gradient(145deg, var(--bw-wood-light), var(--bw-wood-dark));
  border-radius: var(--bw-radius-xl);
  box-shadow:
    0 10px 0 var(--bw-wood-dark),
    0 24px 48px rgba(120, 53, 15, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  border: 4px solid var(--bw-wood);
}

.bw-board__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bw-tile {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--bw-shadow-3d);
  transition: transform 0.2s ease;
  cursor: default;
}

.bw-tile:hover {
  transform: translateY(-4px);
}

.bw-tile--red {
  background: linear-gradient(160deg, #fb7185, var(--bw-red-dark));
}

.bw-tile--blue {
  background: linear-gradient(160deg, #60a5fa, var(--bw-blue-700));
}

.bw-tile--green {
  background: linear-gradient(160deg, #4ade80, var(--bw-green-dark));
}

.bw-tile--purple {
  background: linear-gradient(160deg, #c084fc, var(--bw-purple-dark));
}

.bw-tile__gem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bw-tile__gem svg {
  width: 26px;
  height: 26px;
  color: var(--bw-white);
}

.bw-tile__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bw-white);
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bw-tile__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

/* Screenshots — tilted mosaic grid (no scrollbars) */
.bw-section--shots {
  overflow: visible;
}

.bw-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: 16px 0 8px;
  overflow: visible;
}

.bw-mosaic__item {
  margin: 0;
  overflow: visible;
}

.bw-mosaic__tilt {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bw-shadow-soft);
  border: 4px solid var(--bw-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center bottom;
}

.bw-mosaic__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 315 / 560;
  object-fit: cover;
}

.bw-mosaic__item--1 .bw-mosaic__tilt { transform: rotate(-4deg) translateY(6px); }
.bw-mosaic__item--2 .bw-mosaic__tilt { transform: rotate(3deg); }
.bw-mosaic__item--3 .bw-mosaic__tilt { transform: rotate(-2deg) translateY(4px); }
.bw-mosaic__item--4 .bw-mosaic__tilt { transform: rotate(4deg) translateY(8px); }
.bw-mosaic__item--5 .bw-mosaic__tilt { transform: rotate(-3deg) translateY(4px); }
.bw-mosaic__item--6 .bw-mosaic__tilt { transform: rotate(5deg) translateY(6px); }

.bw-mosaic__item:hover .bw-mosaic__tilt {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.22);
  z-index: 2;
}

/* Download — wave banner */
.bw-download {
  position: relative;
  z-index: 1;
  padding: 100px 20px 80px;
  background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%);
  text-align: center;
  overflow: hidden;
}

.bw-download__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--bw-gold-200);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.bw-download__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.bw-download__lead {
  margin: 16px 0 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.bw-download__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Footer */
.bw-footer {
  position: relative;
  z-index: 1;
  padding: 32px 20px;
  background: var(--bw-blue-900);
  color: rgba(255, 255, 255, 0.8);
}

.bw-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.bw-footer__copy {
  font-size: 0.875rem;
}

.bw-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.bw-footer__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  cursor: pointer;
}

.bw-footer__links a:hover,
.bw-footer__links a:focus-visible {
  color: var(--bw-gold-300);
  outline: none;
}

/* Modal */
.bw-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.bw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.bw-modal__card {
  position: relative;
  width: min(400px, 100%);
  padding: 36px 28px 28px;
  text-align: center;
  background: var(--bw-white);
  border-radius: var(--bw-radius-lg);
  border: 4px solid var(--bw-blue-800);
  box-shadow: 0 24px 64px rgba(30, 58, 138, 0.3);
  animation: bw-modal-in 0.3s ease;
}

@keyframes bw-modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.bw-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--bw-text-muted);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.bw-modal__close:hover {
  background: rgba(30, 64, 175, 0.08);
  color: var(--bw-blue-800);
}

.bw-modal__close svg {
  width: 20px;
  height: 20px;
}

.bw-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, var(--bw-gold-300), var(--bw-gold-500));
  border-radius: 18px;
  box-shadow: var(--bw-shadow-3d);
}

.bw-modal__icon svg {
  width: 32px;
  height: 32px;
  color: var(--bw-blue-900);
}

.bw-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bw-blue-900);
  margin-bottom: 10px;
}

.bw-modal__text {
  font-size: 0.95rem;
  color: var(--bw-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .bw-nav__toggle {
    display: flex;
  }

  .bw-nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid rgba(30, 64, 175, 0.12);
    border-radius: 20px;
    box-shadow: var(--bw-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .bw-nav {
    position: relative;
    flex-wrap: wrap;
  }

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

  .bw-nav.is-open .bw-nav__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .bw-nav.is-open .bw-nav__bar:nth-child(2) {
    opacity: 0;
  }

  .bw-nav.is-open .bw-nav__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .bw-nav__link {
    text-align: center;
    padding: 12px;
  }

  .bw-board__grid {
    grid-template-columns: 1fr;
  }

  .bw-mosaic {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 280px;
    margin: 0 auto;
  }

  .bw-mosaic__item--1 .bw-mosaic__tilt,
  .bw-mosaic__item--2 .bw-mosaic__tilt,
  .bw-mosaic__item--3 .bw-mosaic__tilt,
  .bw-mosaic__item--4 .bw-mosaic__tilt,
  .bw-mosaic__item--5 .bw-mosaic__tilt,
  .bw-mosaic__item--6 .bw-mosaic__tilt {
    transform: none;
  }

  .bw-mosaic__item:hover .bw-mosaic__tilt {
    transform: translateY(-4px);
  }

  .bw-hero__card {
    padding: 28px 20px 24px;
  }
}

@media (min-width: 769px) {
  .bw-mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}

@media (min-width: 1024px) {
  .bw-hero__stage {
    max-width: 900px;
  }

  .bw-hero__card {
    padding: 44px 40px 36px;
  }

  .bw-phone__screen {
    width: 300px;
  }

  .bw-mosaic {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

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

  .bw-float-block {
    animation: none;
  }

  .bw-modal__card {
    animation: none;
  }

  .bw-btn,
  .bw-tile,
  .bw-mosaic__tilt,
  .bw-nav__link--cta {
    transition: none;
  }
}
