/* ============================================================
   COLOR BOOM — studio + flagship game landing site
   Playful, chunky, sticker-style. Theme-able via [data-theme].
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root,
[data-theme="petal"] {
  --bg:        #F5DBD9;
  --bg-2:      #FBF2EC;
  --band:      #F7E3DF;
  --card:      #FFFCFA;
  --card-2:    #FAE8E4;
  --card-cream:#FCF5EF;
  --ink:       #3A2C28;
  --ink-2:     #9C857F;
  --ink-3:     #B9A6A0;
  --line:      rgba(58,44,40,.09);
  --line-2:    rgba(58,44,40,.14);

  --primary:   #F97A2E;
  --primary-2: #FC9442;
  --primary-ink:#FFFFFF;
  --gold:      #F2A93B;
  --blue:      #4FA6F0;
  --green:     #5FBE6B;
  --purple:    #9B7BE0;
  --pink:      #F3789C;

  --shadow-sm: 0 4px 16px rgba(150,80,70,.12);
  --shadow-md: 0 20px 44px -16px rgba(150,80,70,.30);
  --shadow-lg: 0 48px 90px -28px rgba(130,62,52,.42);
  --shadow-pop: 0 16px 32px -10px rgba(249,122,46,.48);
  --glow: transparent;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-xl: 46px;
}

:root[data-theme="sunset"] {
  --bg:        #FBE2CB;
  --bg-2:      #FFF3E6;
  --band:      #FAE0C8;
  --card:      #FFFDFB;
  --card-2:    #FBE6D1;
  --card-cream:#FFF6EC;
  --ink:       #4A3520;
  --ink-2:     #A9835C;
  --ink-3:     #C7A887;
  --line:      rgba(74,53,32,.10);
  --line-2:    rgba(74,53,32,.16);
  --primary:   #F26C26;
  --primary-2: #FB8A3A;
  --shadow-sm: 0 4px 16px rgba(180,100,40,.14);
  --shadow-md: 0 20px 44px -16px rgba(180,100,40,.30);
  --shadow-lg: 0 48px 90px -28px rgba(150,80,30,.42);
  --shadow-pop: 0 16px 32px -10px rgba(242,108,38,.48);
}

:root[data-theme="midnight"] {
  --bg:        #18162C;
  --bg-2:      #201D3A;
  --band:      #211E3C;
  --card:      #2A2749;
  --card-2:    #322E54;
  --card-cream:#2A2749;
  --ink:       #F4F0FF;
  --ink-2:     #A8A0CC;
  --ink-3:     #7E76A0;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --primary:   #FB8C3D;
  --primary-2: #FFA85A;
  --gold:      #F6B852;
  --blue:      #6DB6FB;
  --green:     #6FD17B;
  --purple:    #B49BF0;
  --pink:      #F58BAC;
  --shadow-sm: 0 4px 18px rgba(0,0,0,.4);
  --shadow-md: 0 22px 50px -16px rgba(0,0,0,.6);
  --shadow-lg: 0 50px 100px -30px rgba(0,0,0,.7);
  --shadow-pop: 0 16px 34px -8px rgba(251,140,61,.5);
  --glow: 0 0 0 1px rgba(255,255,255,.04);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  transition: background .5s ease, color .5s ease;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: "Baloo 2", system-ui, sans-serif; font-weight: 800; margin: 0; line-height: 1.02; letter-spacing: -0.01em; }
p { margin: 0; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--primary); color: #fff; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; }
.eyebrow {
  font-family: "Baloo 2", sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--primary); }

/* ---------- Decorative background blobs ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-decor i {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .42;
}
[data-theme="midnight"] .bg-decor i { opacity: .26; }
.blob-a { width: 540px; height: 540px; background: var(--pink);   top: -160px; right: -120px; }
.blob-b { width: 460px; height: 460px; background: var(--blue);   top: 38%; left: -200px; }
.blob-c { width: 520px; height: 520px; background: var(--gold);   bottom: -180px; right: -100px; opacity: .3; }
.blob-d { width: 360px; height: 360px; background: var(--purple); bottom: 24%; left: 30%; opacity: .22; }

/* ---------- Confetti dots ---------- */
.dot { position: absolute; border-radius: 50%; }
.sq { position: absolute; border-radius: 5px; }
body.no-confetti .dot, body.no-confetti .sq { display: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  transition: padding .3s ease;
}
.nav-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 11px 12px 11px 20px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -.01em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 12px;
  overflow: hidden;
  display: grid; place-items: center; font-size: 21px;
  box-shadow: var(--shadow-pop); transform: rotate(-6deg);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand:hover .mark { transform: rotate(6deg) scale(1.06); }
.brand small { font-family:"Nunito",sans-serif; font-weight:800; font-size:9px; letter-spacing:.16em; color: var(--ink-2); display:block; margin-top:-3px; text-transform:uppercase; }
.back-link { font-weight: 800; font-size: 13.5px; color: var(--ink-2); padding: 9px 14px 9px 4px; border-radius: 999px; transition: .2s; white-space: nowrap; }
.back-link:hover { color: var(--primary); }
.back-link { font-weight: 800; font-size: 13.5px; color: var(--ink-2); padding: 9px 14px 9px 4px; border-radius: 999px; transition: .2s; }
.back-link:hover { color: var(--primary); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-weight: 700; font-size: 14.5px; color: var(--ink-2);
  padding: 9px 15px; border-radius: 999px; transition: .2s;
}
.nav-links a:hover { color: var(--ink); background: color-mix(in srgb, var(--card) 70%, transparent); }
.nav-cta {
  border: none; color: var(--primary-ink); font-weight: 800; font-size: 14.5px;
  padding: 11px 22px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(150deg, var(--primary-2), var(--primary));
  box-shadow: var(--shadow-pop);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.03); }
@media (max-width: 760px){ .nav-links { display: none; } }
@media (max-width: 480px){
  .back-label { display: none; }
  .back-link { padding-right: 8px; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .brand small { display: none; }
}

/* ---------- App store badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px 11px 16px; border-radius: 16px;
  background: #15110F; color: #fff; border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
[data-theme="midnight"] .badge { background:#000; }
.badge:hover { transform: translateY(-3px) scale(1.02); }
.badge .gi { font-size: 26px; line-height: 1; }
.badge .bt { text-align: left; line-height: 1.1; }
.badge .bt small { font-size: 10.5px; opacity: .72; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.badge .bt b { font-family: "Baloo 2", sans-serif; font-size: 18px; font-weight: 700; display: block; white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; border: none;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 17px;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.btn-primary { color: var(--primary-ink); background: linear-gradient(150deg, var(--primary-2), var(--primary)); box-shadow: var(--shadow-pop); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-ghost { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); }

/* ============================================================
   PHONE SCREEN CARDS (cropped app screens float as stickers)
   ============================================================ */
.screen {
  border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--card);
  border: 5px solid #fff;
  transition: transform .4s cubic-bezier(.34,1.4,.5,1), box-shadow .4s;
}
[data-theme="midnight"] .screen { border-color: #322E54; }
.screen img { width: 100%; display: block; }
.screen.tilt-l { transform: rotate(-5deg); }
.screen.tilt-r { transform: rotate(5deg); }
.screen.float:hover { transform: rotate(0deg) translateY(-10px) scale(1.03); box-shadow: var(--shadow-lg); }

/* sticker badge that sits on a screen */
.sticker {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 15px;
  padding: 10px 16px; border-radius: 16px; background: var(--card); color: var(--ink);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  z-index: 3;
}
.sticker .em { font-size: 19px; }
.sticker.accent { background: linear-gradient(150deg, var(--primary-2), var(--primary)); color: #fff; border: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding-top: clamp(28px, 5vw, 60px); padding-bottom: clamp(60px, 9vw, 120px);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 55%, var(--card-2) 100%);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
}
.hero h1 { font-size: clamp(2.9rem, 7vw, 5.7rem); }
.hero-title .l { display: block; }
.hero h1 .pop { color: var(--primary); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--ink-2); font-weight: 600; max-width: 30ch; }
.hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.hero-meta .mt { font-size: 14px; color: var(--ink-2); font-weight: 700; }
.hero-meta .mt b { color: var(--ink); }

/* Spotlight hero */
.heroD { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 4vw, 56px); align-items: center; min-height: calc(100vh - 96px); }
.heroD .copy { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(16px, 2vw, 24px); }
.wordmark {
  font-family: "Baloo 2", sans-serif; font-weight: 800;
  font-size: clamp(2.8rem, 6.6vw, 5.4rem); line-height: 1.02; letter-spacing: -.02em;
  margin: 4px 0; color: var(--ink);
}
.wordmark .pop { color: var(--primary); }
.hd-tag { font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.6; font-weight: 600; color: var(--ink-2); max-width: 38ch; }
.hd-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hd-badges .badge .gi { font-style: normal; }

.spot-stack { position: relative; display: grid; place-items: center; min-height: clamp(360px, 42vw, 520px); }
.spot-card { position: absolute; width: min(30vw, 260px); }
.spot-card.sc1 { top: 4%; left: 2%; width: min(24vw, 210px); z-index: 1; transform: rotate(-6deg); }
.spot-card.sc2 { top: 50%; left: 50%; width: min(32vw, 280px); z-index: 3; transform: translate(-50%, -50%); }
.spot-card.sc3 { bottom: 2%; right: 0%; width: min(26vw, 230px); z-index: 2; transform: rotate(6deg); }
.hd-puck {
  position: absolute; z-index: 4; background: var(--card); border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 11px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; border: 1px solid var(--line);
}
.hd-puck .pi { font-size: 23px; }
.hd-puck small { display: block; font-family: "Nunito", sans-serif; font-weight: 700; font-size: 11px; color: var(--ink-2); }
.hd-puck b { font-size: 18px; line-height: 1; }
@media (max-width: 900px){
  .heroD { grid-template-columns: 1fr; gap: 30px; min-height: 0; text-align: left; }
  .spot-stack { min-height: 300px; margin-top: 6px; }
  .spot-card { width: min(46vw, 220px); }
  .spot-card.sc2 { width: min(56vw, 260px); }
}

/* down-arrow scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 20;
  animation: cueBob 1.8s ease-in-out infinite;
}
.scroll-cue .sc-label { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.scroll-cue .chev { width: 46px; height: 46px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; place-items: center; font-size: 26px; line-height: 0; padding-bottom: 8px; color: var(--primary); }
@keyframes cueBob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }
@media (prefers-reduced-motion: reduce){ .scroll-cue { animation: none; } }

/* ============================================================
   MARQUEE / PROOF
   ============================================================ */
.proof { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-item .big { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }
.proof-item .lbl { font-size: 12.5px; font-weight: 800; letter-spacing: .04em; color: var(--ink-2); line-height: 1.2; }
.proof-item .em { font-size: 30px; }
.proof-sep { width: 1px; height: 40px; background: var(--line-2); }
@media (max-width: 760px){ .proof-sep { display: none; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }
.sec-head.center { margin: 0 auto; text-align: center; align-items: center; }
.sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.sec-head p { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-2); font-weight: 600; }

/* ============================================================
   FEATURE ROWS (alternating)
   ============================================================ */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.frow + .frow { margin-top: clamp(80px, 9vw, 130px); }
.frow.flip .fr-media { order: 2; }
.fr-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.fr-copy h3 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.fr-copy p { font-size: 1.1rem; color: var(--ink-2); max-width: 42ch; }
.fr-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.fr-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; padding: 9px 16px; border-radius: 999px; background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.fr-pill .em { font-size: 16px; }
.fr-media { position: relative; display: grid; place-items: center; min-height: 460px; }
.fr-media .screen { width: 290px; }
.fr-media .float-card {
  position: absolute; background: var(--card); border-radius: 18px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: 14px 16px; display: flex; align-items: center; gap: 11px; z-index: 4;
  font-family: "Baloo 2", sans-serif; font-weight: 700;
}
.fr-media .float-card .em { font-size: 26px; }
.fr-media .float-card small { display: block; font-family: "Nunito",sans-serif; font-weight: 700; font-size: 11px; color: var(--ink-2); }
.fr-blob { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: 0; opacity: .9; }
@media (max-width: 880px){
  .frow { grid-template-columns: 1fr; gap: 40px; }
  .frow.flip .fr-media { order: 0; }
  .fr-media { min-height: 420px; }
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who { display: flex; flex-direction: column; align-items: center; text-align: center; }
.who-pill {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 46px; border-radius: 999px; margin-bottom: clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, #ffffff, var(--card));
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--primary);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.01em; z-index: 1; white-space: nowrap;
}
.who-pill .puff { position: absolute; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); z-index: -1; }
[data-theme="midnight"] .who-pill { background: linear-gradient(180deg, var(--card-2), var(--card)); }
[data-theme="midnight"] .who-pill .puff { background: var(--card-2); }
.who-pill .p1 { width: 46px; height: 46px; left: -16px; top: 8px; }
.who-pill .p2 { width: 34px; height: 34px; left: 8px; bottom: -10px; }
.who-pill .p3 { width: 50px; height: 50px; right: -18px; bottom: 2px; }
.who-pill .p4 { width: 30px; height: 30px; right: 16px; top: -10px; }
.who-story {
  max-width: 60ch; margin: 0 auto clamp(46px, 6vw, 78px);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem); line-height: 1.72; font-weight: 600; color: var(--ink);
  text-wrap: pretty;
}
.who-story .hl { color: var(--primary); font-weight: 800; }
.who-team { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(30px, 5vw, 64px); }
.who-member { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.who-av-ring {
  padding: 6px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-md);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
[data-theme="midnight"] .who-av-ring { background: var(--card-2); }
.who-member:hover .who-av-ring { transform: translateY(-8px) rotate(-3deg); }
.dev-avatar { display: block; width: 148px; height: 148px; border-radius: 50%; background: var(--card-2); object-fit: cover; }
.who-member b { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--ink); line-height: 1.15; white-space: nowrap; }
.who-member small { font-weight: 800; font-size: 1rem; color: var(--primary); letter-spacing: .01em; white-space: nowrap; }
.who-foot { margin-top: clamp(34px, 5vw, 54px); font-weight: 700; color: var(--ink-2); font-size: 1.02rem; }
.who-foot b { color: var(--ink); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 70px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand p { color: var(--ink-2); font-size: .98rem; max-width: 30ch; margin-top: 16px; }
.footer h4 { font-family: "Baloo 2", sans-serif; font-size: 14px; letter-spacing: .04em; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--ink-2); font-weight: 700; font-size: 14.5px; transition: .2s; }
.footer ul a:hover { color: var(--primary); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 13px; background: var(--card); display: grid; place-items: center; font-size: 19px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.socials a:hover { transform: translateY(-3px) rotate(-6deg); }
.footer-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 13.5px; font-weight: 700; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SCROLL REVEAL — pure CSS scroll-driven (no JS / rAF dependency)
   Base state is fully visible; animation is progressive enhancement.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@keyframes revIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal { opacity: 0; animation: revIn linear both; animation-timeline: view(); animation-range: entry 2% cover 20%; }
    .reveal.d1 { animation-range: entry 6% cover 24%; }
    .reveal.d2 { animation-range: entry 10% cover 28%; }
    .reveal.d3 { animation-range: entry 14% cover 32%; }
    .reveal.d4 { animation-range: entry 18% cover 36%; }
  }
}
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

/* gentle floating loop for hero stickers */
@keyframes bobf { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.bob { animation: bobf 4.5s ease-in-out infinite; }
.bob.s2 { animation-duration: 5.4s; animation-delay: .6s; }
.bob.s3 { animation-duration: 6s; animation-delay: 1.1s; }
@media (prefers-reduced-motion: reduce){ .bob { animation: none; } }
